CertificateErrorEvent

data class CertificateErrorEvent(eventId: Int, errorType: String, requestURL: String) : Event

There is a certificate error. If overriding certificate errors is enabled, then it should be handled with the handleCertificateError command. Note: this event does not fire if the certificate error has been allowed internally. Only one client per target should override certificate errors at the same time.

Constructors

CertificateErrorEvent
Link copied to clipboard
fun CertificateErrorEvent(eventId: Int, errorType: String, requestURL: String)

Functions

domain
Link copied to clipboard
open override fun domain(): String
Returns domain name for which event was generated.
eventName
Link copied to clipboard
open override fun eventName(): String
Returns event name as described in protocol.

Properties

errorType
Link copied to clipboard
val errorType: String
The type of the error.
eventId
Link copied to clipboard
val eventId: Int
The ID of the event.
requestURL
Link copied to clipboard
val requestURL: String
The url that was requested.

Sources

jvm source
Link copied to clipboard